home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjtexta.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-05  |  718 b   |  28 lines

  1. // Design Time Java Text Field implementation. (HPP)
  2.  
  3. #ifndef _DTJTEXTA_HPP
  4. #define _DTJTEXTA_HPP
  5.  
  6. #include "dtjcomp.hpp"
  7. #include "dtjtext.hpp"
  8.                       
  9. class METAEXPORTCLASSDEF DTJTextArea : public DTJTextComponent
  10. {
  11.     public:
  12.         DTJTextArea( const MetaObject * pMetaObj );
  13.         virtual ~DTJTextArea();
  14.  
  15.     virtual WBool        SetStyle( WStyle stl, WBool clone=FALSE );
  16.  
  17.     virtual void GenClassName( WString & className ) const;
  18.  
  19.     protected:
  20.         virtual WStyle CheckExtraStyles(WStyle style);
  21. };
  22.  
  23. // needed for mdreader
  24. typedef DTJTextArea DTjava__dot__awt__dot__TextArea__dot__102;
  25. typedef WTextBox java__dot__awt__dot__TextArea__dot__102;
  26.  
  27. #endif // _DTJTEXTA_HPP
  28.